/* ------- local seo page ------- */
.pack-design-hero{
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
}

.pack-design-hero::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  background-image: url(../image-2/2149198163.jpg);
  background-size: cover;
  z-index: -3;
  background-position: center;
  background-attachment: fixed;
}

.why-icon{
  width: 40px;
}
.cent-full-img{
  width: 100%;
  /* height: 100%; */
  height: 400px;
  object-fit: cover;
}
.in-side-center{
  height: 100%;
  display: flex;
  align-items: center;
}

.foot-arrow1{
  width: 30px;
}

.round-orange{
  background-color: var(--c1);
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

 /* ----------- abt-us1 ---------  */

 .abt-us{
  position: relative;
  height: 350px !important;
  width: 350px;
 }

 .abt-us-img{
  height: 100%;
  width: 100%;
  border-radius: 50% 50% 50% 0;
  object-fit: cover;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

 .abt-us1{
  position: relative;
  height: 350px !important;
  width: 350px;
 }

 .abt-us-img1{
  height: 100%;
  width: 100%;
  border-radius: 50% 50% 0% 50%;
  object-fit: cover;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

   .ser-head-main{
    font-size: 50px;

  }
  /* .ser-crd{
    width: 100%;
    position: relative;
    min-height: 180px;
    background-color: #fff;
    box-shadow: 0 70px 70px rgba(0,0,0,.2);
    transition: all .5s;
    border-top: 3px solid var(--c2);
  } */
  .ser-crd{
    width: 100%;
    position: relative;
    min-height: 70px;
    background-color: #fff;
    box-shadow: 0 70px 70px rgba(0,0,0,.1);
    transition: all .5s;
    border-top: 3px solid var(--c1);
    border-right: 3px solid var(--c1);
  }
  .ser-crd:hover{
    box-shadow: unset;
    transition: all .5s;
  }
  .ser-p{
    text-align: center;
  }
  .ser-img-bx{
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c1);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -15px;
    position: absolute;
    top: -10%;
    left: -3%;
  }
  .ser-crd:hover .ser-img-bx{
    box-shadow: unset;
    transition: all .5s;
  }
  .ser-img{
    width: 50%;
    filter: brightness(0) invert(1);
  }

  /* ============== work progress box ================== */
.work-process-box{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.round-process-bx{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--c1);
  background-size: 200% auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.round-process-bx::after{
  content: '';
  width: 110%;
  height: 110%;
  border: 3px dashed var(--c1);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
}
.process-img{
  width: 60%;
}
.bg-f6{
  background-color: #f6f6f6;
}
.work-process-box:hover .round-process-bx::after{
  opacity: 1;
  transition: .5s;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}
@keyframes spin {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}
.process-arrow{
  width: 80px;
  position: absolute;
  top: 3%;
  right: -5%;
}
.process-arrow-2{
  width: 80px;
  position: absolute;
  top: 20%;
  right: -10%;
}
/* ------------ responsive ------  */

  @media screen and (max-width:660px) {
    .pack-design-hero{
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
}

 .abt-us{
  position: relative;
  height: 320px !important;
  width: 320px;
 }

  .abt-us1{
  position: relative;
  height: 320px !important;
  width: 320px;
 }

   .ser-img-bx{
    height: 50px !important;
    width: 50px !important;
   }

 .ser-crd h5{
  font-size: 16px;
 }

   .ser-img{
    width: 50%;
    filter: brightness(0) invert(1);
  }
  }